55 lines
No EOL
1.5 KiB
TypeScript
55 lines
No EOL
1.5 KiB
TypeScript
import { internal } from "@app/lib/api";
|
|
import { AxiosResponse } from "axios";
|
|
import { redirect } from "next/navigation";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { AdminGetUserResponse } from "@server/routers/user/adminGetUser";
|
|
import { HorizontalTabs } from "@app/components/HorizontalTabs";
|
|
import { cache } from "react";
|
|
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
|
|
import { getTranslations } from 'next-intl/server';
|
|
|
|
interface UserLayoutProps {
|
|
children: React.ReactNode;
|
|
params: Promise<{ userId: string }>;
|
|
}
|
|
|
|
export default async function UserLayoutProps(props: UserLayoutProps) {
|
|
const params = await props.params;
|
|
|
|
const { children } = props;
|
|
|
|
const t = await getTranslations();
|
|
|
|
let user = null;
|
|
try {
|
|
const getUser = cache(async () =>
|
|
internal.get<AxiosResponse<AdminGetUserResponse>>(
|
|
`/user/${params.userId}`,
|
|
await authCookieHeader()
|
|
)
|
|
);
|
|
const res = await getUser();
|
|
user = res.data.data;
|
|
} catch {
|
|
redirect(`/admin/users`);
|
|
}
|
|
|
|
const navItems = [
|
|
{
|
|
title: t('general'),
|
|
href: "/admin/users/{userId}/general"
|
|
}
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<SettingsSectionTitle
|
|
title={`${user?.email || user?.name || user?.username}`}
|
|
description={t('userDescription2')}
|
|
/>
|
|
<HorizontalTabs items={navItems}>
|
|
{children}
|
|
</HorizontalTabs>
|
|
</>
|
|
);
|
|
}
|